home *** CD-ROM | disk | FTP | other *** search
Borland Project Group | 1999-09-06 | 1.1 KB | 40 lines |
- #------------------------------------------------------------------------------
- VERSION = BWS.01
- #------------------------------------------------------------------------------
- !ifndef ROOT
- ROOT = $(MAKEDIR)\..
- !endif
- #------------------------------------------------------------------------------
- MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
- DCC = $(ROOT)\bin\dcc32.exe $**
- BRCC = $(ROOT)\bin\brcc32.exe $**
- #------------------------------------------------------------------------------
- PROJECTS = LIGen.exe TestHVHookDLL.exe TestExceptNotify.exe TestYAST32.exe \
- TestRTLI.exe TestEST.exe TestFileDump.exe
- #------------------------------------------------------------------------------
- default: $(PROJECTS)
- #------------------------------------------------------------------------------
-
- LIGen.exe: LIGen.dpr
- $(DCC)
-
- TestHVHookDLL.exe: TestHVHookDLL.dpr
- $(DCC)
-
- TestExceptNotify.exe: TestExceptNotify.dpr
- $(DCC)
-
- TestYAST32.exe: TestYAST32.dpr
- $(DCC)
-
- TestRTLI.exe: TestRTLI.dpr
- $(DCC)
-
- TestEST.exe: TestEST.dpr
- $(DCC)
-
- TestFileDump.exe: TestFileDump.dpr
- $(DCC)
-
-
-